@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700&display=swap');


*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  width: 100%;
}


/*===Hero Page===*/
.hero-page {
  background: linear-gradient(rgba(58, 55, 55, 0.8), rgba(0, 0, 0, 0.8)), url('../assets/project-main.png');
  min-height: 85vh;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  position: relative; /* Add position relative for absolute positioning of children */
}

.hero-page .texts{
  position: absolute;
  top: 55%;
  left: 5%; /* Adjust the left value to position the text accordingly */
  transform: translate(0%, -50%);
  color: white; /* Adjust text color */
  width: 850px;
}

.hero-page .texts h1{
  font-size: 2.5rem;
  line-height: 3.0625rem;
}

.hero-page .texts p{
  margin: 14px 0;
  font-size: 1.1rem;
  line-height: 1.6875rem;
}

.hero-page .hero-page-buttons{
  display: flex;
  justify-content: space-between;
  width: 370px;
  margin-top: 20px;
}
.hero-page .hero-page-buttons a{
  color: #fff;
}

.hero-page .hero-page-buttons .btn{
width: 135px;
height: 35px;
font-size: 14px;
border: none;
border-radius: 7px;
background: #42459C;
color: #fff;
}


/* Media Queries for Responsive Design */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-page {
      min-height: 90vh;
      width: 100%;
  }

  .hero-page .texts {
      width: 100%;
  }

  .hero-page .texts h1 {
      font-size: 1.9rem; 
      line-height: 2.2rem;
  }

  .hero-page .texts p {
      font-size: 0.9rem; 
      line-height: 1.2rem; 
  }

  .hero-page .hero-page-buttons{
      width: 270px;
  }

  .hero-page .hero-page-buttons .btn {
      width: 100px; 
      font-size: 11px; 
  }
}


/* next small screen  */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-page {
      min-height: 90vh;
      width: 100%;
  }

  .hero-page .texts {
      width: 50%;
  }

  .hero-page .texts h1 {
      font-size: 1.6rem; 
      line-height: 2rem; 
  }

  .hero-page .texts p {
      font-size: 0.9rem; 
      line-height: 1.2rem; 
  }

  .hero-page .hero-page-buttons{
      width: 270px;
  }

  .hero-page .hero-page-buttons .btn {
      width: 90px; 
      font-size: 9px; 
  }
}


/* small screen size */
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .hero-page .texts {
      width: 80%;
  }

  .hero-page .texts h1 {
      font-size: 1.5rem; 
      line-height: 1.9rem; 
  }

  .hero-page .texts p {
      font-size: 0.7rem; 
      line-height: 1rem; 
  }

  .hero-page .hero-page-buttons{
      width: 250px;
  }

  .hero-page .hero-page-buttons .btn {
      width: 90px; 
      font-size: 9px; 
  }
}



/* very small screen  */
@media only screen and (max-width: 599px) {

  .hero-page {
      min-height: 60vh;
      width: 100%;
  }


  .hero-page .texts {
      width: 80%;
      
  }

  .hero-page .texts h1 {
      font-size: 1.5rem;
      line-height: 1.8rem;
  }

  .hero-page .texts p {
      font-size: 0.9rem;
      line-height: 1rem;
  }

  .hero-page .hero-page-buttons{
      width: 300px;
  }

  .hero-page .hero-page-buttons .btn {
      width: 90px;
      font-size: 8px;
  }
}



.section-about-us {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-us-header {
  order: 1;
  margin-top: 30px;
  margin-bottom: 5px;
  
  text-align: center;
}

.about-us-header .about-us-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  
}
.about-us-content {
  display: flex;
  justify-content: center;
  order: 2;
  margin: 30px 0;
  align-items: flex-start;
  gap: 20px;
}

.about-us-text {
  flex: 0.5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 10px 0;
  background-color: #42459C;
  color: #ffffff;
  padding: 20px;
}
.about-us-text p{
  margin-top: 50px;
}

.btn-about-us {
  order: 3;
  margin-top: 20px;
  
  background-color: #ffffff;
  color: #42459C;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;

}

.about-us-image {
  flex: 1;
  max-width: 40%;
  height: auto;
  object-fit: cover;
  margin: 10px 0;
  
  margin-left: -2%;
  margin-top: 20px;
}
@media screen and (max-width: 489px) {
  .about-us-content {
    flex-direction: column;
    align-items: center;
  }

  .about-us-text, .about-us-image {
    flex: none;
    max-width: 90%;
  }

  .about-us-text {
    order: 2;
    padding: 5px;
    text-align: center;
    margin-top: -25px;

  }

  .about-us-image {
    order: 1;
    margin-top: 20px;
  }

  .btn-about-us {
    order: 3;
    align-self: center;
  }
}

.quote {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-lightsteelblue);
  padding: 20px;
  box-sizing: border-box;
}

.quote-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px; /* adjust as needed */
  width: 50%;
  gap: 40px; /* adjust as needed */
  margin: 0 auto;
}

.quote-image-icon {
  max-width: 70%; /* adjust as needed */
  height: auto;
}

.quote-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px; /* adjust as needed */
}

.quote-button {
  align-self: center;
  background-color: #42459C; /* adjust as needed */
  color: white;
  padding: 10px 20px; /* adjust as needed */
  border: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}



@media screen and (max-width: 992px) {
  .quote-content {
    flex-direction: column;
    align-items: center;
  }

  .quote-image-icon, .quote-text {
    max-width: 100%;
  }

  .quote-image-icon {
    margin-bottom: 20px;
  }

  .quote-text {
    order: 1;
  }

  .quote-button {
    order: 2;
    align-self: center;
  }
}

@media screen and (max-width: 768px) {
  .quote-content {
    flex-direction: column;
    align-items: center;
  }

  .quote-image-icon, .quote-text {
    max-width: 100%;
  }

  .quote-image-icon {
    margin-bottom: 20px;
  }

  .quote-text {
    order: 1;
  }

  .quote-button {
    order: 2;
    align-self: center;
  }
}
@media screen and (max-width: 600px) {
  .quote-content {
    flex-direction: column;
    align-items: center;
  }

  .quote-image-icon, .quote-text {
    max-width: 100%;
  }
  .quote-image-icon {
    margin-bottom: 20px;
  }

  .quote-text {
    order: 1;
  }

  .quote-button {
    order: 2;
    align-self: center;
  }
}
@media screen and (max-width: 489px) {
  .quote-content {
    flex-direction: column;
    align-items: center;
  }

  .quote-image-icon, .quote-text {
    max-width: 100%;
  }

  .quote-image-icon {
    margin-bottom: 20px;
  }

  .quote-text {
    order: 1;
  }

  .quote-button {
    order: 2;
    align-self: center;
  }
}

/* Testimonials */


.testimonial-container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color:#fff;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}
.testimonial-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: bold;
}

.testimonial-header p {
  font-size: 18px;
  color: #000;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  
}
.testimonial-box{
  background-color: #42459C;
  border-radius: 10px;
  margin-right: 20px;
}

.testimonial-items {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  transition: transform 0.5s ease;
}

.testimonial-item {
  flex: 0 0 calc(100% / 3); /* Show 3 items per row by default */
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 59%;
  object-fit: cover;
  margin-bottom: 10px;
}
.testimonial-content {
  margin-top: 10px;
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  border: none;
  background-color: #ddd;
  color: #555;
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

@media screen and (max-width: 600px) {
  .testimonial-item {
      flex: 0 0 100%; /* Show 1 item per row on smaller screens */
  }
}

.section-header{
  text-align: center;
  margin-bottom: 50px;
}
.section-header .title{
  font-size: 35px;
  font-weight: 600;
  text-transform: capitalize;
  color: #ffffff;
  line-height: 1.2;
}
.testimonials{
  padding: 100px 0;
}
.testimonials-item{
  background-color: #2D3192;
  padding: 30px;
  border-radius: 30px;
}
.testimonials-item .info{
  display: flex;
  align-items: center;
}
.testimonials-item img{
  max-width: 80px;
  border-radius: 50%;
  margin-right: 20px;
  vertical-align: middle;
}
.testimonials-item .name{
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}
.testimonials-item .job{
  text-transform: capitalize;
  color: #3d3d3d;
}
.testimonials-item p{
  margin-top: 20px;
  color: #928e8e;

}
.testimonials .swiper-pagination{
  position:relative;
  margin-top: 40px;
  bottom: auto;
}
.testimonials .swiper-pagination-bullet{
  height: 12px;
  width: 12px;
  background-color: #2d3192;
}
.testimonials-item .rating{
  margin-top: 15px;
  font-size: 14px;
  color: darkorange;
}
.services{
  max-width: 100%;
  min-height: auto;
}

.services .texts{
  justify-content: center;
  text-align: center;
  padding: 20px 0;
  line-height: 40px;
}
.services .texts h2{
  font-size: 2rem;
  font-weight: bold;
  
}
.services .texts .services-p{
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;  
}

.services-all{
  display: flex;
  grid-gap: 35px;
  margin: 30px;
}

.services-list{
  height: fit-content;
  width: 600px;
  align-items: center;
  text-align: center;
  justify-self: center;
  margin-bottom: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  position: relative;
  margin-top: -60px;
}


.services-list .big-image-1{
  background-image: url('../assets/web.jpg');
  height: 220px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}


.services-list .small-image{
  display: none;
  height: 40px;
  width: 40px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-400%);
}

.services-list .small-image-1{
  display: none;
  height: 40px;
  width: 40px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-400%);
}

.services-list .big-image-2{
  background-image: url('../assets/mobile.jpg');
  height: 220px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.services-list .big-image-3{
  background-image: url('../assets/teaching.jpg');
  height: 220px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}
.services-list .big-image-4{
  background-image: url('../assets/internship.jpg');
  height: 220px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}
.services-list .big-image-5{
  background-image: url('../assets/technical.jpg');
  height: 220px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}
.services-list .big-image-6{
  background-image: url('../assets/consulting.jpg');
  height: 220px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.services-list .services-text{
  padding: 18px;
  margin-top: 5px;
  color: white;
  background-color: #2D3192;
}

.services-list .services-text h3{
  margin-bottom: 10px;
  color: white;
  font-size: 20px;
}

.services-list .services-text p{
  line-height: 20px;
  font-size: 14px;
}


.services .btn-services {
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #42459C;
  padding: 10px 20px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  
}
.btn-services {
  text-align: center;
}
.btn-services svg {
  
  fill: #42459C;
}
/* Additional CSS for testimonial navigation arrows */
.testimonial-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 500px; /* Adjust width as needed */
  margin-top: 20px;
  font-size: 24px;
  color: #2d3192; /* Arrow color */
}

.prev-arrow, .next-arrow {
  cursor: pointer;
}

.prev-arrow:hover, .next-arrow:hover {
  color: #3d3d3d; /* Hover color */
}

@media screen and (max-width: 1200px) {
  .services-list {
    width: 80%; /* adjust as needed */
  }
}

@media screen and (max-width: 992px) {
  .services-list {
    width: 70%; /* adjust as needed */
    margin-top: -60px;
    

  }
  .services-list .services-text {
    padding: 5px;
    padding-bottom: 3px;

  }
}

@media screen and (max-width: 768px) {
  .services-list {
    width: 60%; /* adjust as needed */
  }
}

@media screen and (max-width: 600px) {
  .services-all {
    flex-direction: column;
  }
  .services-list {
    width: 100%;
  }
}

@media screen and (max-width: 498px) {
  .services-all {
    flex-direction: column;
  }
  .services-list {
    width: 100%;
  }
}

/* Testimonial Section */


/* Contact Us Section */
.contact-us-small{
  width: 100%;
  min-height: 40vh;
  position: relative;
  text-align: center;
  background-color: rgba(24, 25, 31, 0.5);
}

.contact-us-small::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/rectangle-20-1png.png') center/cover no-repeat;
  opacity: 0.8;
  z-index: -1;
}

.contact-us-small-all{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.contact-us-small-all h3{
  line-height: 25px;
  margin-bottom: 35px;
  font-size: 1rem;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  .contact-us-small-all h3{
    line-height: 20px;
    margin-bottom: 35px;
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 599px) {
  .contact-us-small-all h3{
    line-height: 17px;
    margin-bottom: 30px;
    font-size: 0.7rem;
  }

  .contact-us-small-all{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
}


.blogs{
  max-width: 100%;
  min-height: auto;
  margin-top: 50px;
}
.blogs .texts{
  justify-content: center;
  text-align: center;
  padding: 20px 0;
  line-height: 50px;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 1250px;
  margin: 20px auto;
  padding: 20px;
  gap: 20px;
}
.card-list .card-item {
  background: #fff;
  padding: 26px;
  border-radius: 8px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
  list-style: none;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: border 0.5s ease;
}
.card-list .card-item:hover {
  border: 2px solid #000;
}
.card-list .card-item img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  object-fit: cover;
}
.card-list .span-container {
  display: flex;
  justify-content: flex-end;
  
}
.card-list span {
  display: inline-block;
  background: #F7DFF5;
  margin: 20px 35px;
  padding: 8px 15px;
  font-size: 0.75rem;
  border-radius: 50px;
  font-weight: 600;
 
}
.card-list .developer {
  background-color: #F7DFF5; 
  color: #B22485;
}   
.card-list .designer {
  background-color: #d1e8ff;
  color: #2968a8;
}
.card-list .editor {
  background-color: #d6f8d6; 
  color: #205c20;
}
.card-list .read {
  margin-top: 20px;
  color: #928e8e;
  font-size: x-small;
}
.card-item h3 {
  color: #2d3192;
  font-size: 1.438rem;
  margin-top: 28px;
  font-weight: 600;
}
.card-item .blog-p {
  color: #000;
  font-size: 1rem;
  margin-top: 20px;
  line-height: 1.5;
}
.card-item .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-35deg);
  height: 40px;
  width: 40px;
  color: #2d3192;
  border: 1px solid #000;
  border-radius: 50%;
  margin-top: 40px;
  transition: 0.2s ease;
}
.card-list .card-item:hover .arrow  {
  background: #2d3192;
  color: #fff; 
}
@media screen and (min-width: 1201px) {
  .card-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Adjust as needed */
  }
}



@media screen and (max-width: 992px) {
  .card-list {
    grid-template-columns: 1fr; /* 1 per row */
  }
  .card-list .card-item {
    width: 80%; /* Adjust as needed */
    height: auto; /* Adjust as needed */
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .card-list {
    grid-template-columns: 1fr; /* 1 per row */
  }
  .card-list .card-item {
    width: 80%; /* Adjust as needed */
    height: auto; /* Adjust as needed */
    margin: auto;
  }
}

@media screen and (max-width: 600px) {
  .card-list {
    grid-template-columns: 1fr; /* 1 per row */
  }
  .card-list .card-item {
    width: 80%; /* Adjust as needed */
    margin: auto;
  }
}

@media screen and (max-width: 498px) {
  .card-list {
    grid-template-columns: 1fr; /* 1 per row */
  }
  .card-list .card-item {
    width: 100%; /* Adjust as needed */
  }
}
/* Get-Updates */
.get-updates {
  max-width: 60%;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);     
  padding: 30px;
}

.get-updates-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Additional styling for your container */
}

.text {
  width: 60%;
  line-height: 25px;
}

.email {
  width: 40%; /* Adjust the width of the email container */
  text-align: center;
  display: flex; /* Set the email container as a flex container */
}

button {
  padding: 10px 20px;
  max-width: 140px;
  min-height: 38px;
  margin-left: 5px;
  cursor: pointer;
  font-size: 14px;
  border: none;
  border-radius: 7px;
  background: #42459C;
  color: #fff;
  /* Additional styling for your button */
}

input[type="email"] {
  width: 70%; /* Adjust the width of the email input */
  padding: 10px;
  outline: none;
  border: .1px solid #000;
  /* Additional styling for your email input */
}

input[type="email"]:focus {
  outline: none;
  border-color: #42459C; /* Change the border color on focus */
}

.email-form {
    display: flex;
}

@media only screen and (max-width: 599px) {
  .email-form {
    flex-direction: column;
  }
}

.email-form input[type="email"] {
    flex: 1;
    margin-right: 10px; /* Adjust as needed */
}
